Exemplo n.º 1
0
 public bool CreateSwimTime(SwimTime create)
 {
     //VALIDATEION HERE USE VALIDATION SPACE BELOW!! model it off those methods and return false if it doesn't work
     if (ValidateSwimTime(create))
     {
         return(Repository.CreateSwimTime(create));
     }
     else
     {
         return(false);
     }
 }