public static Return Update(ScheduledTask obj)
 {
     obj.DateLastModified = DateTime.Now;
     return(Update(MapperKey, obj));
 }
 public static Return DeletePermanently(ScheduledTask obj)
 {
     return(Delete(MapperKey, obj));
 }
 public static Return Insert(ScheduledTask obj)
 {
     obj.DateCreated = obj.DateLastModified = DateTime.Now;
     return(Insert(MapperKey, obj));
 }