Пример #1
0
 public MessagesController(ILogger logger, ICrudOnMessages crudOnMessages, IAuthorization authorization, IThrowExceptionToUser throwExceptionToUser)
 {
     this.logger               = logger;
     this.crudOnMessages       = crudOnMessages;
     this.authorization        = authorization;
     this.throwExceptionToUser = throwExceptionToUser;
 }
Пример #2
0
 public AlertsController(ICrudOnAlerts crudOnAlerts, IAuthorization authorization, IThrowExceptionToUser throwExceptionToUser, ICrudOnUsers crudOnUsers)
 {
     this.crudOnAlerts         = crudOnAlerts;
     this.authorization        = authorization;
     this.throwExceptionToUser = throwExceptionToUser;
     this.crudOnUsers          = crudOnUsers;
 }
Пример #3
0
 public UsersController(ILogger logger, ICrudOnUsers crudOnUsers, IAuthorization authorization, ICrudOnMessages crudOnMessages, IMyPasswordGenerator myPasswordGenerator, IMailSender mailSender, IThrowExceptionToUser throwExceptionToUser)
 {
     this.crudOnUsers          = crudOnUsers;
     this.logger               = logger;
     this.crudOnMessages       = crudOnMessages;
     this.authorization        = authorization;
     this.mailSender           = mailSender;
     this.myPasswordGenerator  = myPasswordGenerator;
     this.throwExceptionToUser = throwExceptionToUser;
 }
Пример #4
0
 public ProductsController(ILogger logger, ICrudOnProducts crudOnProducts, IAuthorization authorization, IMyQueryBuilder myQueryBuilder, ICrudOnFavorites crudOnFavorites,
                           IThrowExceptionToUser throwExceptionToUser, IMailSender mailSender, ICrudOnAlerts crudOnAlerts)
 {
     this.logger               = logger;
     this.crudOnProducts       = crudOnProducts;
     this.authorization        = authorization;
     this.myQueryBuilder       = myQueryBuilder;
     this.crudOnFavorites      = crudOnFavorites;
     this.throwExceptionToUser = throwExceptionToUser;
     this.crudOnAlerts         = crudOnAlerts;
     this.mailSender           = mailSender;
 }
Пример #5
0
 public ImprovementsController(ICrudOnImprovements crudOnImprovements, IThrowExceptionToUser throwExceptionToUser)
 {
     this.crudOnImprovements   = crudOnImprovements;
     this.throwExceptionToUser = throwExceptionToUser;
 }
Пример #6
0
 public FriendsController(ICrudOnFriends crudOnFriends, IThrowExceptionToUser throwExceptionToUser)
 {
     this.crudOnFriends        = crudOnFriends;
     this.throwExceptionToUser = throwExceptionToUser;
 }
Пример #7
0
 public FavoriteController(ICrudOnFavorites crudOnFavorites, IAuthorization authorization, IThrowExceptionToUser throwExceptionToUser)
 {
     this.crudOnFavorites      = crudOnFavorites;
     this.authorization        = authorization;
     this.throwExceptionToUser = throwExceptionToUser;
 }