コード例 #1
0
 public async Task <List <Catalog> > GetAll() => await business.GetAll <Catalog>();
コード例 #2
0
 public async Task <List <Faculty> > GetAll() => await business.GetAll <Faculty>();
コード例 #3
0
 public async Task <List <EmployeeResponse> > GetAll() => await business.GetAll <EmployeeResponse>();
コード例 #4
0
 // GET: api/Producto
 public virtual IEnumerable <TDTO> Get()
 {
     return(_genericBusiness.GetAll().Select(x => Mapper.Map <TDTO>(x)));
 }