Exemplo n.º 1
0
 public static Tenant GetById(int id)
 {
     return(TenantConverter.ToDTO(TenantDAL.GetById(id)));
 }
Exemplo n.º 2
0
 public static Tenant GetTenantByUserId(int userId)
 {
     return(TenantConverter.ToDTO(TenantDAL.GetByUserId(userId)));
 }