Beispiel #1
0
 public SearchProtoService(IProfileDAL profileDal, ISkillDAL skillDal, ISchoolDAL schoolDal, ICompanyDAL companyDal)
 {
     _profileDAL = profileDal;
     _skillDAL = skillDal;
     _schoolDAL = schoolDal;
     _companyDAL = companyDal;
 }
 public CompanyBLL(ICompanyDAL company, IMapper mapper)
 {
     _company = company;
     _mapper  = mapper;
 }
Beispiel #3
0
 public InformationBLL(IInformationDAL informationDAL, ICompanyDAL companyDAL, ICustomItemValueDAL customItemValueDAL)
 {
     _informationDAL     = informationDAL;
     _companyDAL         = companyDAL;
     _customItemValueDAL = customItemValueDAL;
 }
Beispiel #4
0
 public CompanyService(LdCmsDbEntitiesContext LdCmsDbEntitiesContext, ICompanyDAL CompanyDAL)
 {
     this.LdCmsDbEntitiesContext = LdCmsDbEntitiesContext;
     this.CompanyDAL             = CompanyDAL;
     this.Dal = CompanyDAL;
 }
Beispiel #5
0
 public CompanyBLL(ICompanyDAL company)
 {
     companyDAL = company;
 }
 public CompanyService(ICompanyDAL companyDAL)
 {
     _companyDAL = companyDAL;
 }
Beispiel #7
0
 public CompanyService(CTMSContext CTMSContext, ICompanyDAL CompanyDAL)
 {
     this.CTMSContext = CTMSContext;
     this.CompanyDAL  = CompanyDAL;
     this.Dal         = CompanyDAL;
 }
 public CompanyBLL(ICompanyDAL companyDal)
 {
     _companyDal = companyDal;
 }
Beispiel #9
0
 public PersonService(IPersonDAL personDAL, ICompanyDAL companyDAL)
 {
     _personDAL  = personDAL;
     _companyDAL = companyDAL;
 }
Beispiel #10
0
 public CompanyBLL()
 {
     _companyDal = new CompanyDAL();
 }
Beispiel #11
0
 public CompanyController(ICompanyDAL companyDAL, IPreferencesDAL preferencesDAL)
 {
     this.companyDAL     = companyDAL;
     this.preferencesDAL = preferencesDAL;
 }
Beispiel #12
0
 public CompanyBLL(ICompanyDAL companyDAL)
 {
     _companyDAL = companyDAL;
 }
Beispiel #13
0
 public StudentsController(IStudentDAL studentDAL, ICompanyDAL companyDAL, IPreferencesDAL preferencesDAL)
 {
     this.studentDAL     = studentDAL;
     this.companyDAL     = companyDAL;
     this.preferencesDAL = preferencesDAL;
 }