public static bool Update(RevelationMyhistoryEntity revelationMyhistoryEntity, DbTransaction trans = null, string zoneId = "") { var provider = new RevelationMyhistoryProvider(zoneId); return(provider.Update(revelationMyhistoryEntity, trans)); }
public static List <RevelationMyhistoryEntity> GetAll(string zoneId = "") { var provider = new RevelationMyhistoryProvider(zoneId); return(provider.GetAll()); }
public static bool Delete(System.Guid managerId, DbTransaction trans = null, string zoneId = "") { RevelationMyhistoryProvider provider = new RevelationMyhistoryProvider(zoneId); return(provider.Delete(managerId, trans)); }
public static RevelationMyhistoryEntity GetById(System.Guid managerId, string zoneId = "") { var provider = new RevelationMyhistoryProvider(zoneId); return(provider.GetById(managerId)); }