示例#1
0
 public UserOperationsBLL(IUserOperationsService UserOperationsService)
 {
     _UserOperationsService = UserOperationsService ?? throw new ArgumentException(nameof(UserOperationsService));
 }
 public UserOperationsController(IUserOperationsService UserOperationsService)
 {
     _UserOperations = UserOperationsService;
 }
示例#3
0
 public UserOperationsController(IUserOperationsService UserOperationsService)
 {
     _UserOperationsService = UserOperationsService ?? throw new ArgumentException(nameof(UserOperationsService));
     _UserOperationBLL      = new UserOperationsBLL(_UserOperationsService);
 }