Ejemplo n.º 1
0
        public void InsertFamilyRaidLog(long familyId, long raidId, DateTime time)
        {
            var log = new RaidLogDTO
            {
                FamilyId = familyId,
                RaidId   = raidId,
                Time     = time
            };

            DaoFactory.RaidLogDao.InsertOrUpdate(ref log);
        }
Ejemplo n.º 2
0
        public void InsertRaidLog(long characterId, long raidId, DateTime time)
        {
            var log = new RaidLogDTO
            {
                CharacterId = characterId,
                RaidId      = raidId,
                Time        = time
            };

            DaoFactory.RaidLogDao.InsertOrUpdate(ref log);
        }