public TaxCalculationController(IExceptionHandler excep, ICalculationProductService calculationProductServ, ICalculationFooterService calculationfooterServ,
                                 IJobOrderHeaderChargeService jobOrderHeaderChargeSer)
 {
     _exception = excep;
     _calculationProductService   = calculationProductServ;
     _calculationFooterService    = calculationfooterServ;
     _jobOrderHeaderChargeService = jobOrderHeaderChargeSer;
 }
        public CalculationFooterController(ICalculationFooterService SaleOrder, IUnitOfWork unitOfWork, IExceptionHandlingService exec)
        {
            _CalculationFooterService = SaleOrder;
            _unitOfWork = unitOfWork;
            _exception  = exec;

            UserRoles = (List <string>)System.Web.HttpContext.Current.Session["Roles"];

            //Log Initialization
            LogVm.SessionId      = 0;
            LogVm.ControllerName = System.Web.HttpContext.Current.Request.RequestContext.RouteData.GetRequiredString("controller");
            LogVm.ActionName     = System.Web.HttpContext.Current.Request.RequestContext.RouteData.GetRequiredString("action");
            LogVm.User           = System.Web.HttpContext.Current.Request.RequestContext.HttpContext.User.Identity.Name;
        }