public ProjectsController(AbstractProjectsServices abstractProjectsServices,
                           AbstractCompanyContactsServices abstractCompanyContactsServices, AbstractStatusDescServices abstractStatusDescServices)
 {
     this.abstractProjectsServices        = abstractProjectsServices;
     this.abstractCompanyContactsServices = abstractCompanyContactsServices;
     this.abstractStatusDescServices      = abstractStatusDescServices;
 }
Пример #2
0
 public OpportunitiesController(AbstractOpportunitiesServices abstractOpportunitiesServices,
                                AbstractUsersServices abstractUsersServices,
                                AbstractStatusDescServices abstractStatusDescServices,
                                AbstractCompanyContactsServices abstractCompanyContactsServices)
 {
     this.abstractOpportunitiesServices   = abstractOpportunitiesServices;
     this.abstractUsersServices           = abstractUsersServices;
     this.abstractStatusDescServices      = abstractStatusDescServices;
     this.abstractCompanyContactsServices = abstractCompanyContactsServices;
 }
 public CompanyContactsController(AbstractCompanyServices abstractCompanyServices,
                                  AbstractCompanyContactsServices abstractCompanyContactsServices)
 {
     this.abstractCompanyServices         = abstractCompanyServices;
     this.abstractCompanyContactsServices = abstractCompanyContactsServices;
 }