Ejemplo n.º 1
0
 public IEnumerable <OwnerDto> GetAllActiveOwners()
 {
     return(QuerryForList <OwnerDto>(OwnerSql.GetAllDistinctActiveOwners()));
 }
Ejemplo n.º 2
0
 public OwnerDto GetOwnerById(int ownerId)
 {
     return(QueryForObject <OwnerDto>(OwnerSql.GetOwnerById(ownerId)));
 }