示例#1
0
 public async Task DeleteOnSubmit(AeonMallCustomer dto)
 {
     await _aeonMallCustomerRepository.DeleteAsync(dto);
 }
示例#2
0
        public async Task <AeonMallCustomer> InsertOnSubmit(AeonMallCustomer dto)
        {
            var res = await _aeonMallCustomerRepository.InsertAsync(dto);

            return(res);
        }