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

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