Exemplo n.º 1
0
 public GarageSaleTO GetGarageyByID(Guid id)
 {
     try
     {
         IGarageRepository repo = new GarageRepository(this.UserId);
         return(repo.GetGarageyByID(id));
     }
     catch (Exception ex)
     {
         throw new GarageSaleException("GarageSaleGetGarageyByIDError", ex);
     }
 }