예제 #1
0
 public AdController(Context context, IGetAdsCommand getCommand, IGetAdCommand getOneCommand, ICreateAdCommand createAdCommand, IDeleteAdCommand deleteAdCommand, IEditAdCommand editAdCommand)
 {
     _context         = context;
     _getCommand      = getCommand;
     _getOneCommand   = getOneCommand;
     _createAdCommand = createAdCommand;
     _deleteAdCommand = deleteAdCommand;
     _editAdCommand   = editAdCommand;
 }
예제 #2
0
 public AdsController(Context context, IGetAdsCommand getCommand, IGetAdCommand getOneCommand)
 {
     _context       = context;
     _getCommand    = getCommand;
     _getOneCommand = getOneCommand;
 }