コード例 #1
0
        public static bool Update(RevelationMyhistoryEntity revelationMyhistoryEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new RevelationMyhistoryProvider(zoneId);

            return(provider.Update(revelationMyhistoryEntity, trans));
        }
コード例 #2
0
        public static List <RevelationMyhistoryEntity> GetAll(string zoneId = "")
        {
            var provider = new RevelationMyhistoryProvider(zoneId);

            return(provider.GetAll());
        }
コード例 #3
0
        public static bool Delete(System.Guid managerId, DbTransaction trans = null, string zoneId = "")
        {
            RevelationMyhistoryProvider provider = new RevelationMyhistoryProvider(zoneId);

            return(provider.Delete(managerId, trans));
        }
コード例 #4
0
        public static RevelationMyhistoryEntity GetById(System.Guid managerId, string zoneId = "")
        {
            var provider = new RevelationMyhistoryProvider(zoneId);

            return(provider.GetById(managerId));
        }