//
        // GET: /Cliente/SalaoFormaPgto/
        public ActionResult Index(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            // salao
            var salao = new Domain.Service.Cliente.SalaoService().Find((int)id);

            // formas de pagamento
            var formas = new FormaPgtoService().Listar().Where(x => x.Ativo == true).OrderBy(x => x.Descricao).ToList();

            var model = new List <SalaoFormaPgtoModel>();

            foreach (var item in formas)
            {
                model.Add(new SalaoFormaPgtoModel
                {
                    FomaPgto    = item.Descricao,
                    IdFormaPgto = item.Id,
                    IdSalao     = (int)id,
                    Selecionado = (_service.Listar().Where(x => x.IdSalao == id && x.IdFormaPgto == item.Id).Count() > 0)
                });
            }

            ViewBag.Fantasia  = salao.Fantasia;
            ViewBag.IdSalao   = salao.Id;
            ViewBag.IdEmpresa = salao.IdEmpresa;
            return(View(model));
        }
        //
        // GET: /Cliente/SalaoFormaPgto/
        public ActionResult Index(int? id)
        {
            if (id == null)
            {
                return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
            }

            // salao
            var salao = new Domain.Service.Cliente.SalaoService().Find((int)id);

            // formas de pagamento
            var formas = new FormaPgtoService().Listar().Where(x => x.Ativo == true).OrderBy(x => x.Descricao).ToList();

            var model = new List<SalaoFormaPgtoModel>();

            foreach (var item in formas)
            {
                model.Add(new SalaoFormaPgtoModel
                {
                    FomaPgto = item.Descricao,
                    IdFormaPgto = item.Id,
                    IdSalao = (int)id,
                    Selecionado = (_service.Listar().Where(x => x.IdSalao == id && x.IdFormaPgto == item.Id).Count() > 0)
                });
            }

            ViewBag.Fantasia = salao.Fantasia;
            ViewBag.IdSalao = salao.Id;
            ViewBag.IdEmpresa = salao.IdEmpresa;
            return View(model);
        }
Beispiel #3
0
 public FormaPgtoUnitTest()
 {
     service = new FormaPgtoService();
 }
 public FormaPgtoUnitTest()
 {
     service = new FormaPgtoService();
 }