Пример #1
0
 public bool ValidateNewStudentandSendToDA(Student aStudent)
 {
     if (aStudent.Id == " ")
     {
         this.Message = "Id is incorrect";
         return(false);
     }
     else
     {
         if (aStudent.Name == " ")
         {
             this.Message = "Name is Incorrect";
             return(false);
         }
         else
         {
             if (aStudent.Age <= 0 || aStudent.Age > 100)
             {
                 this.Message = "Age is unmatched";
                 return(false);
             }
             else
             {
                 if (aStudent.Faculty == " ")
                 {
                     this.Message = "Faculty is incorrect";
                     return(false);
                 }
                 else
                 {
                     if (aStudent.ParmanentAdress == " ")
                     {
                         this.Message = "Parmanent Adress is Incorrect";
                         return(false);
                     }
                     else
                     {
                         if (aStudent.PresentAdress == " ")
                         {
                             this.Message = "Present Adress is Incorrect";
                             return(false);
                         }
                         else
                         {
                             if (aStudent.Gender == " ")
                             {
                                 this.Message = "Gender is Incorrect";
                                 return(false);
                             }
                             else
                             {
                                 if (aStudent.ContactNo == " ")
                                 {
                                     this.Message = "Contact Number is Incorrect";
                                     return(false);
                                 }
                                 else
                                 {
                                     if (aStudent.Bloodgroup == " ")
                                     {
                                         this.Message = "Bloodgroup is Incorrect";
                                         return(false);
                                     }
                                     else
                                     {
                                         StudentDA StudentDAOBj = new StudentDA();
                                         bool      result       = StudentDAOBj.SaveNewStudentToDB(aStudent);
                                         return(result);
                                     }
                                 }
                             }
                         }
                     }
                 }
             }
         }
     }
 }