Example #1
0
        public BoolResponse SavePockup(airbornefrs.Entities.ContactUsGeneral objContactUsGeneral)
        {
            BoolResponse rslt = (from o in objDB.Support_ContactUs_General_Save_SP(objContactUsGeneral.Name, objContactUsGeneral.Email, objContactUsGeneral.CompanyName, objContactUsGeneral.ReasonInquiry, objContactUsGeneral.Product, objContactUsGeneral.IMEI, objContactUsGeneral.AdditionalInfo)
                                 select new BoolResponse {
                Id = o.ID, status = o.ErrorCode
            }).FirstOrDefault();

            return(rslt);
        }
Example #2
0
 public SupportGeneral()
 {
     contactData = new airbornefrs.Entities.ContactUsGeneral();
 }