Somewhere along in EPiServer 9.x updates all JobBase references didn't compile and was marked as ambiguous.
Instead of inheriting JobBase you should inherit ScheduledJobBase
public class AlertSign : EPiServer.Scheduler.ScheduledJobBase { //... }
Somewhere along in EPiServer 9.x updates all JobBase references didn't compile and was marked as ambiguous.
Instead of inheriting JobBase you should inherit ScheduledJobBase
public class AlertSign : EPiServer.Scheduler.ScheduledJobBase { //... }