public AmigoService Build(ServiceOptions options)
 {
     return(new AmigoService(options.ConnectionString));
 }
 public AmigoFactory(ServiceOptions options)
 {
     this._options = options;
 }
Exemple #3
0
 public LoginService Build(ServiceOptions options)
 {
     return(new LoginService(options.ConnectionString));
 }
Exemple #4
0
 public LoginFactory(ServiceOptions options)
 {
     this._options = options;
 }
Exemple #5
0
 public UserService Build(ServiceOptions options)
 {
     return(new UserService(options.ConnectionString));
 }
Exemple #6
0
 public UserFactory(ServiceOptions options)
 {
     this._options = options;
 }