Exemplo n.º 1
0
 public ProfesorController(ITeacher teacher, IContactType contactType,
                           IDocumentType documentType, ICountry country, ICity city,
                           IAddressType addressType, IStatus status, IEducationType educationType,
                           ITeacherEducation teacherEducation, INationality nationality, IMatirialStatus matirialStatus, IProvince province,
                           ITeacherHiringType teacherHiringType, ITeacherFileType teacherFileType, ITeacherFile teacherFile,
                           IWebHostEnvironment hostingEnv, IConfiguration config, IContactAddress contactAddress, IContactCommunication contactCommunication, IUniversity university
                           )
 {
     _teacher              = teacher;
     _contactType          = contactType;
     _documentType         = documentType;
     _country              = country;
     _city                 = city;
     _addressType          = addressType;
     _status               = status;
     _educationType        = educationType;
     _teacherEducation     = teacherEducation;
     _nationality          = nationality;
     _matirialStatus       = matirialStatus;
     _province             = province;
     _teacherHiringType    = teacherHiringType;
     _teacherFileType      = teacherFileType;
     _teacherFile          = teacherFile;
     _hostingEnv           = hostingEnv;
     _config               = config;
     _contactAddress       = contactAddress;
     _contactCommunication = contactCommunication;
     _university           = university;
 }
Exemplo n.º 2
0
 public RepresentanteController(IAgent agent, IContactType contactType, IDocumentType documentType,
                                IAgentType agentType, IAddressType addressType, ICountry country, IProvince province, ICity city)
 {
     _agent        = agent;
     _contactType  = contactType;
     _documentType = documentType;
     _agentType    = agentType;
     _addressType  = addressType;
     _country      = country;
     _province     = province;
     _city         = city;
 }
Exemplo n.º 3
0
 public ProfesorController(ITeacher teacher, IContactType contactType,
                           IDocumentType documentType, ICountry country, ICity city,
                           IAddressType addressType, IStatus status, IEducationType educationType,
                           ITeacherEducation teacherEducation, INationality nationality, IMatirialStatus matirialStatus, IProvince province
                           )
 {
     _teacher          = teacher;
     _contactType      = contactType;
     _documentType     = documentType;
     _country          = country;
     _city             = city;
     _addressType      = addressType;
     _status           = status;
     _educationType    = educationType;
     _teacherEducation = teacherEducation;
     _nationality      = nationality;
     _matirialStatus   = matirialStatus;
     _province         = province;
 }
Exemplo n.º 4
0
 public Developer(IContactType contactType) : base(contactType)
 {
     Name = "Developer";
 }
Exemplo n.º 5
0
 public Employee(IContactType contactType)
 {
     _contactType = contactType;
 }
Exemplo n.º 6
0
 public ScrumMaster(IContactType contactType) : base(contactType)
 {
     Name = "ScrumMaster";
 }