示例#1
0
 private Musteri SelectMusteriByID(int ID)
 {
     try
     {
         using (var musteriBussines = new MusteriBusiness())
         {
             return(musteriBussines.SelectMusteriById(ID));
         }
     }
     catch (Exception ex)
     {
         LogHelper.Log(LogTarget.File, ExceptionHelper.ExceptionToString(ex), true);
         throw new Exception("Musteri doesn't exists.");
     }
 }