Пример #1
0
        private bool SaveOutScope(List <OutScope> outScopeItems)
        {
            EstimationOperations qDal = new EstimationOperations();

            qDal.SaveOutScope(outScopeItems);
            return(true);
        }
Пример #2
0
        private bool SaveInScope(List <InScope> inscopeItems)
        {
            EstimationOperations qDal = new EstimationOperations();

            qDal.SaveInScope(inscopeItems);
            return(true);
        }
Пример #3
0
        private bool SaveAssumptions(List <Assumptions> assumptions)
        {
            EstimationOperations qDal = new EstimationOperations();

            qDal.SaveAsumptions(assumptions);
            return(true);
        }
Пример #4
0
        private bool SavePhasedEstimateVersionDetails(List <VersionDetails_Phased> estimateVersionDetail)
        {
            EstimationOperations qDal = new EstimationOperations();

            qDal.SaveEstimateVersionDetails(estimateVersionDetail);
            return(true);
        }
Пример #5
0
        private int SavePhasedEstimateVersion(EstimationVersionsHistory estimateversion)
        {
            EstimationOperations qDal = new EstimationOperations();

            return(qDal.SaveEstimateVersion(estimateversion));
        }
Пример #6
0
        public List <Catagory> GetCategories()
        {
            EstimationOperations estOperation = new EstimationOperations();

            return(estOperation.GetCategories());
        }