public OrganizationsController()
 {
     _organizationServices = new OrganizationServices();
 }
Exemplo n.º 2
0
 public OrganizationsController()
 {
     _organizationServices = new OrganizationServices();
 }
Exemplo n.º 3
0
 public OrganizationController(IOrganizationServices organizationServices)
 {
     this._organizationServices = organizationServices;
 }
Exemplo n.º 4
0
 public UserBuilder(IMiteryaDBContext context)
 {
     this._context         = context;
     _organizationServices = new OrganizationServices(_context);
     _userProperties       = new PropertyServices(context);
 }