コード例 #1
0
        public async Task <bool> InsertAsync(Stanje entity)
        {
            var isValidEntity = _validation.IsValidEntity(entity);

            //should be thrown error
            if (!isValidEntity)
            {
                return(false);
            }

            return(await _insertService.InsertAsync(entity));
        }
コード例 #2
0
 public async Task <bool> InsertAsync(Stanje entity)
 {
     return(await _accountBalanceInsertService.InsertAsync(entity));
 }
コード例 #3
0
 public async Task <bool> InsertAsync(Klijent entity)
 {
     return(await _clientInsert.InsertAsync(entity));
 }