public bool UpdateEmailCredentials(CompanySetupBE company)
 {
     CompanySetupDAL setupDAL = new CompanySetupDAL();
     if (setupDAL.UpdateEmailCredentials(company))
     {
         return true;
     }
     else
     {
         return false;
     }
 }
 public bool GetEmailCredentials(ref DataTable dtEmailCredentials)
 {
     CompanySetupDAL setupDAL = new CompanySetupDAL();
     if (setupDAL.GetEmailCredentials(ref dtEmailCredentials))
     {
         return true;
     }
     else
     {
         return false;
     }
 }