public async Task <IActionResult> GetProducts()
 {
     return(ActionResultInstance(await _productService.GetAllAsync()));
 }
Example #2
0
 public async Task <IEnumerable <CreateIsciDto> > GetIsciAsync(int grupId)
 {
     return(await _serviceGeneric.GetAllAsync());
 }
Example #3
0
 public async Task <IActionResult> GetProduct()
 {
     return(ActionInstance(await _serviceGeneric.GetAllAsync()));
 }
Example #4
0
 public async Task <IEnumerable <CreateUcretDto> > GetUcretAsync()
 {
     return(await _serviceGeneric.GetAllAsync());
 }
Example #5
0
 public async Task <IEnumerable <CreateIsverenDto> > GetIsverenAsync()
 {
     return(await _serviceGeneric.GetAllAsync());
 }