Exemplo n.º 1
0
 public usersController()
 {
     _IAccountServices   = new accountServices();
     _IRoleUserServicess = new RoleUserSerives();
     _IStateServices     = new StateServices();
     _ICountryServices   = new CountryServices();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Public constructor to initialize product service instance
 /// </summary>
 public StateController(IStateServices stateServices)
 {
     _stateServices = stateServices;
 }
Exemplo n.º 3
0
 public StatesController(StateServices stateServices)
 {
     this.stateServices = stateServices;
 }
Exemplo n.º 4
0
 public StateController(IStateServices State)
 {
     this._State = State;
 }
Exemplo n.º 5
0
 public StateController(IStateServices service)
 {
     _service = service;
 }