public static bool Update(StatisticInfoEntity statisticInfoEntity, DbTransaction trans = null) { var provider = new StatisticInfoProvider(); return(provider.Update(statisticInfoEntity, trans)); }
public static bool Update(System.Int32 zoneId, System.Int32 totalUser, System.Int32 totalManager, System.Int64 totalPay, System.Int64 pointRemain, System.Int64 onlineMinutes, System.DateTime updateTime, DbTransaction trans = null) { StatisticInfoProvider provider = new StatisticInfoProvider(); return(provider.Update(zoneId, totalUser, totalManager, totalPay, pointRemain, onlineMinutes, updateTime, trans)); }
public static List <StatisticInfoEntity> GetAll() { var provider = new StatisticInfoProvider(); return(provider.GetAll()); }
public static bool Create(System.Int32 zoneId, DbTransaction trans = null) { StatisticInfoProvider provider = new StatisticInfoProvider(); return(provider.Create(zoneId, trans)); }
public static StatisticInfoEntity GetById(System.Int32 zoneId) { var provider = new StatisticInfoProvider(); return(provider.GetById(zoneId)); }