Example #1
0
        public static bool Update(CrosscrowdMatchEntity crosscrowdMatchEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new CrosscrowdMatchProvider(zoneId);

            return(provider.Update(crosscrowdMatchEntity, trans));
        }
Example #2
0
        public static bool SaveKillPrizeStatus(System.Guid idx, System.Int32 status, DbTransaction trans = null, string zoneId = "")
        {
            CrosscrowdMatchProvider provider = new CrosscrowdMatchProvider(zoneId);

            return(provider.SaveKillPrizeStatus(idx, status, trans));
        }
Example #3
0
        public static bool Delete(System.Guid idx, DbTransaction trans = null, string zoneId = "")
        {
            CrosscrowdMatchProvider provider = new CrosscrowdMatchProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Example #4
0
        public static List <CrosscrowdMatchEntity> GetAll(string zoneId = "")
        {
            var provider = new CrosscrowdMatchProvider(zoneId);

            return(provider.GetAll());
        }
Example #5
0
        public static CrosscrowdMatchEntity GetById(System.Guid idx, string zoneId = "")
        {
            var provider = new CrosscrowdMatchProvider(zoneId);

            return(provider.GetById(idx));
        }
Example #6
0
        public static bool Save(CrosscrowdMatchEntity crowdMatchEntity, DateTime resurrectionTime, DateTime nextMatchTime, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new CrosscrowdMatchProvider(zoneId);

            return(provider.Save(crowdMatchEntity, resurrectionTime, nextMatchTime, trans));
        }