Example #1
0
 public IList <NormsMapping> GetAllNormsMapping()
 {
     return(_NormsMappingRepository.GetAll());
 }
        public IList <NormSet> GetAllNormSet()
        {
            int CompanyID = 0;// HttpContext.Current.Session["CompanyId"];

            return(_NormSetRepository.GetAll().Where(c => c.CompanyId == Convert.ToInt32(CompanyID)).ToList <NormSet>());
        }
Example #3
0
 public IList <Company> GetAllCompanies()
 {
     return(_companyRepository.GetAll());
 }
 public IList <TaskMilestoneBookedQty> GetAllTaskMilestoneBookedQty()
 {
     return(_taskMilestoneBookedQtyRepository.GetAll());
 }
 public IList<ClientAsset> GetAllClientAssets()
 {
     return _clientAssetRepository.GetAll();
 }
Example #6
0
 public IList <EstimationColSettingTemplateDetail> GetAllEstimationColSettingTemplateDetail()
 {
     return(_estimationColSettingTemplateDetail.GetAll());
 }
 public IList <SharedProjectTaskList> GetAllSharedProjectTaskList()
 {
     return(_sharedtaskRepository.GetAll());
 }
Example #8
0
 public List <Document> GetAllDocumentsByDepartmentId(int departmentId)
 {
     return(_documentRepository.GetAll().Where(x => x.DepartmentId == departmentId).ToList());
 }
 public IList <NormSet> GetAllNormSet(int companyId)
 {
     return(_NormSetRepository.GetAll().Where(c => c.CompanyId == companyId).ToList <NormSet>());
 }
Example #10
0
        public void ClearGroupForDispatches(int departmentGroupId)
        {
            var groupDispatches = _callDispatchGroupRepository.GetAll().Where(x => x.DepartmentGroupId == departmentGroupId);

            _callDispatchGroupRepository.DeleteAll(groupDispatches);
        }
Example #11
0
 public IList <AssignResourceForEstimation> GetAllAssignResourceForEstimation()
 {
     return(_assignResourceForEstimationRepository.GetAll());
 }
Example #12
0
 public List <DepartmentCallPriority> GetAllCallPriorities()
 {
     return(_departmentCallPriorityRepository.GetAll().ToList());
 }
Example #13
0
 public CallAttachment GetCallAttachment(int callAttachmentId)
 {
     return(_callAttachmentRepository.GetAll().FirstOrDefault(x => x.CallAttachmentId == callAttachmentId));
 }
 public IList <Technology> GetAllTechnologys()
 {
     return(_technologyRepository.GetAll());
 }
Example #15
0
 public IList <TaskCreationNormDetail> GetAllTaskCreationNormDetail()
 {
     return(_taskCreationNormDetail.GetAll());
 }
Example #16
0
 public List <Language> GetAllLanguages()
 {
     return((List <Language>)_languageRepository.GetAll());
 }
Example #17
0
 public IList <PageCommentHistory> GetAllCommentHistory()
 {
     return(_pagecommenthistory.GetAll());
 }
 public IList <TaskProgressHistory> GetAllprogressHistory()
 {
     return(_progresshistory.GetAll());
 }
 public IList <IndexDataTable> GetAllIndexdata()
 {
     return(_indexdata.GetAll());
 }
Example #20
0
 public IList <ContractNormDistribution> GetAllContractNormDistributions()
 {
     return(_contractNormDistributionRepository.GetAll());
 }
 public IList <UserComment> GetAllUserComments()
 {
     return(_usercommentRepository.GetAll());
 }
Example #22
0
 public List <PersonnelRole> GetRolesForDepartmentUnlimited(int departmentId)
 {
     return(_personnelRolesRepository.GetAll().Where(x => x.DepartmentId == departmentId).ToList());;
 }
 public override List <Book> GetAll()
 {
     return((List <Book>)repository.GetAll());
 }
Example #24
0
 public IList <RecipientFilter> GetAllRecipientFilter()
 {
     return(_recipientFiltersRepository.GetAll());
 }
Example #25
0
 public IList <NextStepMessageUser> GetAllUsersAvailable()
 {
     return(_NextStepUserMessagesRepository.GetAll());
 }
Example #26
0
 public IEnumerable <ProjectProgressLevelTemplateTaskType> GetTemplateTaskTypeByTemplateDetailID(int TemplateDetailID)
 {
     return(_projectProgressLevelTemplateTaskType.GetAll().Where(c => c.ProgressLevelTemplateDetailID == TemplateDetailID).ToList());
 }
Example #27
0
 public IList <ApprovalAttachmentFileTemp> GetAllAttachmentFile()
 {
     return(_attachmentFile.GetAll());
 }
Example #28
0
 public IList <ResourceRequest> GetAllResourceRequest()
 {
     return(_resourceRequest.GetAll());
 }
Example #29
0
 public IList <NewActivityMaster> GetAllNewActivityMaster()
 {
     return(_NewActivityMaster.GetAll());
 }
Example #30
0
 public IList <UserActivityTracker> GetAllUserActivity()
 {
     return(_userActivityTrackerRepository.GetAll());
 }