예제 #1
0
 public async Task <RemoteCallResult <int> > SaveSupplier(tblSupplier tblSupplier) => RemoteCallResult.Success(await _repository.SaveSupplier(tblSupplier));
예제 #2
0
 public async Task <RemoteCallResult <List <Product> > > GetAllProducts() => RemoteCallResult.Success(await _repository.GetAllProducts());
예제 #3
0
 public async Task <RemoteCallResult <List <Product> > > GetQuickViewProduct() => RemoteCallResult.Success(await _repository.GetQuickViewProduct());
예제 #4
0
 public async Task <RemoteCallResult <List <CategoryBrand> > > GetAllCategoryBrands() => RemoteCallResult.Success(await _repository.GetAllCategoryBrands());
예제 #5
0
 public async Task <RemoteCallResult <List <tblSupplier> > > GetAllSuppliers() => RemoteCallResult.Success(await _repository.GetAllSuppliers());
예제 #6
0
 public async Task <RemoteCallResult <List <tblBrands> > > GetAllBrands() => RemoteCallResult.Success(await _repository.GetAllBrands());