コード例 #1
0
 public BussinessService(IBussinessRepository bussinessRepository)
 {
     _bussinessRepository = bussinessRepository;
 }
コード例 #2
0
 /// <summary>
 /// Clase constructora.
 /// </summary>
 /// <param name="bussinessRepository"></param>
 /// <param name="cache"></param>
 /// <param name="cacheM"></param>
 public BussinessController(IBussinessRepository bussinessRepository, IDistributedCache cache, IMemoryCache cacheM)
 {
     _bussinessRepository = bussinessRepository;
     this.cache           = cache;
     this.cacheM          = cacheM;
 }
コード例 #3
0
 public BussinessController(IBussinessRepository bussiness)
 {
     _bussiness = bussiness;
 }