public JsonResult GetProductionShift()
        {
            List <ProductionShiftModel> model = new List <ProductionShiftModel>();

            using (ProductionShiftService svc = new ProductionShiftService())
            {
                var dtos = svc.GetAll();
                model.AddRange(Mapper.Map <List <ProductionShiftDto>, List <ProductionShiftModel> >(dtos));
            }
            return(Json(model, JsonRequestBehavior.AllowGet));
        }