Exemplo n.º 1
0
 public bool CreateNewScore(Score model)
 {
     try
     {
         if (model == null)
         {
             return(false);
         }
         var create = scoreDAL.CreateNewScore(model);
         return(create);
     }
     catch
     {
         return(false);
     }
 }