예제 #1
0
        public ActionResult Create()
        {
            var customer = new VWCustomer()
            {
                IsNew = true, Customer = new Customer()
            };

            return(View("Maint", customer));
        }
예제 #2
0
        public ActionResult Edit(Guid id)
        {
            var customer = new VWCustomer()
            {
                IsNew = false
            };

            customer.Customer = _db.Customers.FirstOrDefault(x => x.Id.Equals(id));
            customer.Contacts = _db.CustomerContactRelations.Where(x => x.Customer == id).Select(x => _db.Contacts.FirstOrDefault(y => y.Id == x.Contact)).ToList();
            return(View("Maint", customer));
        }