예제 #1
0
        public bool UpdateEmailCredentials(CompanySetupBE company)
        {
            CompanySetupDAL setupDAL = new CompanySetupDAL();

            if (setupDAL.UpdateEmailCredentials(company))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
예제 #2
0
        public bool GetEmailCredentials(ref DataTable dtEmailCredentials)
        {
            CompanySetupDAL setupDAL = new CompanySetupDAL();

            if (setupDAL.GetEmailCredentials(ref dtEmailCredentials))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }