Esempio n. 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>());
        }
Esempio n. 3
0
 public IList <Company> GetAllCompanies()
 {
     return(_companyRepository.GetAll());
 }
 public IList <TaskMilestoneBookedQty> GetAllTaskMilestoneBookedQty()
 {
     return(_taskMilestoneBookedQtyRepository.GetAll());
 }
 public IList<ClientAsset> GetAllClientAssets()
 {
     return _clientAssetRepository.GetAll();
 }
Esempio n. 6
0
 public IList <EstimationColSettingTemplateDetail> GetAllEstimationColSettingTemplateDetail()
 {
     return(_estimationColSettingTemplateDetail.GetAll());
 }
 public IList <SharedProjectTaskList> GetAllSharedProjectTaskList()
 {
     return(_sharedtaskRepository.GetAll());
 }
Esempio n. 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>());
 }
Esempio n. 10
0
        public void ClearGroupForDispatches(int departmentGroupId)
        {
            var groupDispatches = _callDispatchGroupRepository.GetAll().Where(x => x.DepartmentGroupId == departmentGroupId);

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