Exemple #1
0
 public bool Update(GarageSaleTO branch)
 {
     try
     {
         IGarageRepository repo = new GarageRepository(this.UserId);
         return(repo.Update(branch));
     }
     catch (Exception ex)
     {
         throw new GarageSaleException("GarageSaleUpdateError", ex);
     }
 }