public int CreateAccountStatistic(AccountStatistic accountStatistic)
        {
            _context.Add(accountStatistic);
            _context.SaveChanges();

            return(accountStatistic.Id);
        }
 public int CreateAccountStatistic(AccountStatistic accountStatistic)
 {
     return(_accountRepository.CreateAccountStatistic(accountStatistic));
 }