Ejemplo n.º 1
0
 public LoanBusinessEntity GetCustName(LoanBusinessEntity loanBusinessEntity)
 {
     try
     {
         using (var dbContext = new LoanManagementSystemEntities())
         {
             tbl_Customer cust = dbContext.tbl_Customer.Where(c => c.Id == loanBusinessEntity.CustomerId).FirstOrDefault();
             if (cust != null)
             {
                 loanBusinessEntity.CustomerName = cust.Name;
             }
         }
     }
     catch (Exception ex)
     {
     }
     finally
     {
     }
     return(loanBusinessEntity);
 }
Ejemplo n.º 2
0
        public bool Save(CustomerBusinessEntity customer)
        {
            tbl_Customer dbCustomer;

            if (customer.ID == -1)
            {
                dbCustomer = new tbl_Customer();
            }
            else
            {
                dbCustomer = Get(customer.ID);
            }
            AssignValueToDBCustomer(ref dbCustomer, ref customer);
            using (var dbContext = new LoanManagementSystemEntities())
            {
                dbContext.tbl_Customer.Add(dbCustomer);
                dbContext.SaveChanges();
            }

            return(true);
        }
Ejemplo n.º 3
0
        private void AssignValueToDBCustomer(ref tbl_Customer dbCustomer, ref CustomerBusinessEntity custmorEntity)
        {
            dbCustomer.Name         = custmorEntity.Name;
            dbCustomer.AdhaarNo     = custmorEntity.Adhaarno;
            dbCustomer.MobileNo     = custmorEntity.MobileNo;
            dbCustomer.PANCard      = custmorEntity.PanCard;
            dbCustomer.DOB          = custmorEntity.DOB;
            dbCustomer.Gender       = custmorEntity.Gender;
            dbCustomer.AnnualIncome = (decimal)custmorEntity.AnnualIncome;


            // Present Address
            tbl_Address presentAddress = new tbl_Address();

            presentAddress.Address1 = custmorEntity.PresentAddress.Address1;
            presentAddress.Address2 = custmorEntity.PresentAddress.Address2;
            presentAddress.City     = custmorEntity.PresentAddress.City;
            presentAddress.State    = custmorEntity.PresentAddress.State;
            presentAddress.District = custmorEntity.PresentAddress.District;
            presentAddress.PINCode  = custmorEntity.PresentAddress.Pincode;

            dbCustomer.PresentAddress = presentAddress;
        }