示例#1
0
        public int CreateAccountStatistic(AccountStatistic accountStatistic)
        {
            _context.Add(accountStatistic);
            _context.SaveChanges();

            return(accountStatistic.Id);
        }
示例#2
0
 public int CreateAccountStatistic(AccountStatistic accountStatistic)
 {
     return(_accountRepository.CreateAccountStatistic(accountStatistic));
 }