Пример #1
0
        public JsonResult CreateOrganization(UIOrganization organization)
        {
            string errorMsg = string.Empty;
            ValidationInformation validation = new ValidationInformation();

            try
            {
                validation = this.businessContract.UserCreation(organization);
                if (validation.IsSuccess)
                {
                    errorMsg = Utilities.Success;
                }
                else
                {
                    errorMsg = Utilities.Failiure;
                }

                // TODO: Add insert logic here

                //return RedirectToAction("SuccesserrorMsg
            }
            catch (Exception ex)
            {
                UserException.LogException(ex);
                errorMsg = Utilities.Failiure;
                validation.ErrorMessages = new List <string>();
                validation.ErrorMessages.Add("Some Exception Occured, Please try again later");
                //return View();
            }

            if (errorMsg == Utilities.Success)
            {
                return(Json(errorMsg, JsonRequestBehavior.AllowGet));
            }
            else
            {
                return(Json(JsonConvert.SerializeObject(validation), JsonRequestBehavior.AllowGet));
            }
        }
Пример #2
0
 public UserBValidation(ValidationInformation validation)
 {
     this.validation = validation;
     this.validation.ErrorMessages = new List <string>();
 }
        public ValidationInformation UserCreation(UIOrganization uIOrganization)
        {
            ValidationInformation validation = this.userBValidation.RegistrationValidation(uIOrganization);

            if (validation.IsSuccess)
            {
                string   password  = GenerateTempPassword(8, 2);
                string[] sector    = new string[2];
                string[] subSector = new string[2];
                Others   other     = new Others();

                bool isOthers = false;
                if (uIOrganization.Sector.Contains(Utilities.OthersValue))
                {
                    sector = uIOrganization.Sector.Split(Utilities.SplitValue);
                    uIOrganization.Sector = sector[0];
                    other.Sector          = sector[1];
                    isOthers = true;
                }
                else
                {
                    other.Sector = string.Empty;
                }

                if (uIOrganization.SubSector.Contains(Utilities.OthersValue))
                {
                    subSector = uIOrganization.SubSector.Split(Utilities.SplitValue);
                    uIOrganization.SubSector = subSector[0];
                    other.SubSector          = subSector[1];
                    isOthers = true;
                }
                else
                {
                    other.SubSector = string.Empty;
                }


                using (Repository <Organization> repository = new Repository <Organization>())
                {
                    Organization organization = this.organizationMapper.Registration(uIOrganization);
                    organization.Cities         = repository.AssessmentContext.cities.FirstOrDefault(q => q.Id == organization.CityId);
                    organization.States         = repository.AssessmentContext.states.FirstOrDefault(q => q.Id == organization.StateId);
                    organization.Revenues       = repository.AssessmentContext.revenues.FirstOrDefault(q => q.Id == organization.RevenueId);
                    organization.TypesOfService = repository.AssessmentContext.serviceTypes.FirstOrDefault(q => q.Id == organization.Id);

                    //organization.Sectors = repository.AssessmentContext.sectors.FirstOrDefault(q => q.Id == organization.SectorId);
                    //organization.SubSectors = repository.AssessmentContext.subSectors.FirstOrDefault(q => q.Id == organization.SubSectorId);
                    organization.SectorId    = isOthers ? Convert.ToInt16(Utilities.SectorValue) : repository.AssessmentContext.sectors.FirstOrDefault(q => q.Id == organization.SectorId).Id;
                    organization.SubSectorId = isOthers ? Convert.ToInt16(Utilities.SectorValue) : repository.AssessmentContext.subSectors.FirstOrDefault(q => q.Id == organization.SubSectorId).Id;

                    int assessmentid  = 0;
                    var listAssesment = new List <Assessment>();
                    int sectorValue   = Convert.ToInt16(Utilities.SectorValue);

                    listAssesment = repository.AssessmentContext.assessments.Where(q => q.Sector == organization.SectorId).ToList();

                    if (listAssesment == null || listAssesment.Count == 0)
                    {
                        listAssesment = repository.AssessmentContext.assessments.Where(q => q.Sector == sectorValue).ToList();
                    }

                    if (listAssesment != null && listAssesment.Count > 0)
                    {
                        var subAssessment = listAssesment.FirstOrDefault(q => q.SubSector == organization.SubSectorId);
                        if (subAssessment != null && subAssessment.Id > 0)
                        {
                            assessmentid = subAssessment.Id;
                        }
                        else
                        {
                            assessmentid = listAssesment[0].Id;
                        }
                    }
                    organization.AssessmentId = assessmentid;

                    organization.TempPassword = password;
                    repository.Create(organization);
                    repository.SaveChanges();
                }

                if (isOthers)
                {
                    other.OrganizationId = uIOrganization.Name.Substring(0, 6);
                    using (Repository <Others> repository = new Repository <Others>())
                    {
                        //other.Organizations = repository.AssessmentContext.UserInfo.FirstOrDefault(q => q.Name == other.OrganizationId);
                        repository.Create(other);
                        repository.SaveChanges();
                    }
                }

                validation.IsSuccess = true;

                Repository <Template> template = new Repository <Template>();
                var registrationTemplate       = template.Filter(q => q.Name.StartsWith(Utilities.RegistrationTemplateName)).FirstOrDefault();
                if (registrationTemplate != null && !string.IsNullOrWhiteSpace(registrationTemplate.Description))
                {
                    RegistrationSendMail.SendMail(registrationTemplate.Description, Utilities.RegistrationSubject, uIOrganization.Email, uIOrganization.Name);
                }
                //this.registrationSendMail.Send(new MailConfiguration());
            }
            else
            {
                validation.IsSuccess = false;
            }
            return(validation);
        }