public DonorViewModel AddDonor(DonorViewModel model) { try { model.IsValid = model.Validate(); if (model.IsValid) { //if (_bdmSvc.CityCodeExists(AppConstants.SITE_CODE, model.City.CityCode)) //{ // model.FieldId = "cityCode"; // model.Message = string.Format(AppConstants.VALIDATION_ALREADY_EXISTS, "City Code"); // model.IsValid = false; //} //if (model.IsValid) //{ model.Donor.SiteCode = AppConstants.SITE_CODE; model.Donor.EntityTypeCode = EntityTypeCodes.GFT.ToString(); _alKhairSvc.AddDonor(model.Donor); model.FieldId = "donorName"; model.Donor = new DonorBE(); model.Donors = _alKhairSvc.GetViewOfAllDonors(AppConstants.SITE_CODE); model.Message = string.Format(AppConstants.CRUD_CREATE, "Donor Name"); //} } } catch (Exception ex) { model.IsValid = false; model.Message = ex.Message; } return model; }
public DonorViewModel ModifyDonor(DonorBE mod) { DonorViewModel model = new DonorViewModel(); try { DBOperations op = mod.IsActive ? DBOperations.Update : DBOperations.Delete; mod.SiteCode = AppConstants.SITE_CODE; model.Donor = mod; model.IsValid = model.Validate(); if (op == DBOperations.Delete || model.IsValid) { //_bdmSvc.ModifyEntity(mod); _alKhairSvc.ModifyDonor(mod); model.FieldId = "donorName"; model.Donor = new DonorBE(); model.Donors = _alKhairSvc.GetViewOfAllDonors(AppConstants.SITE_CODE); model.Message = op == DBOperations.Update ? string.Format(AppConstants.CRUD_UPDATE, "Donor Name") : string.Format(AppConstants.CRUD_DELETE, "Donor Name"); } } catch (Exception ex) { model.IsValid = false; model.Message = ex.Message; if (ex.Message.Contains("Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=472540 for information on understanding and handling optimistic concurrency exceptions.")) model.Message = "Unable to modify Region Code"; } return model; }
public DonorViewModel GetAllDonors() { var mod = new DonorViewModel(); mod.IsValid = true; try { mod.Donors = _alKhairSvc.GetViewOfAllDonors(AppConstants.SITE_CODE); //.GetViewOfAllDonors(AppConstants.SITE_CODE, EntityTypeCodes.GFT.ToString()); } catch (Exception ex) { mod.IsValid = false; mod.Message = ex.Message; } return mod; }