public TransactionController(IGuestbookServices guestbookServices, IUnitOfWork unitOfWork, IPasswordLibServices passwordLibServices, IRedisBasketRepository redisCacheManager)
 {
     _passwordLibServices = passwordLibServices;
     _redisCacheManager   = redisCacheManager;
     _unitOfWork          = unitOfWork;
     _guestbookServices   = guestbookServices;
 }
Example #2
0
 public HomeController(IsysUserInfoServices userinfs, IBlogArticleServices BlogArticleServive, IAdvertisementServices AdvertisementServices, IGuestbookServices GuestbookServices, ITopicServices TopicServive, ITopicDetailServices TopicDetailServive)
 {
     this.userinfoservice       = userinfs;
     this.BlogArticleServive    = BlogArticleServive;
     this.AdvertisementServices = AdvertisementServices;
     this.GuestbookServices     = GuestbookServices;
     this.TopicServive          = TopicServive;
     this.TopicDetailServive    = TopicDetailServive;
 }
 public TransactionController(IUnitOfWork unitOfWork, IPasswordLibServices passwordLibServices, IGuestbookServices guestbookServices)
 {
     _unitOfWork          = unitOfWork;
     _passwordLibServices = passwordLibServices;
     _guestbookServices   = guestbookServices;
 }
 public GuestbookController(IGuestbookServices GuestbookServices)
 {
     _guestbookServices = GuestbookServices;
 }
 public MovieController(IBlogArticleServices BlogArticleServive, IGuestbookServices GuestbookServices)
 {
     this.BlogArticleServive = BlogArticleServive;
     this.GuestbookServices  = GuestbookServices;
 }
Example #6
0
 public StatisticalController(IBlogArticleServices BlogArticleServive, IGuestbookServices GuestbookServices)
 {
     this.BlogArticleServive = BlogArticleServive;
     this.GuestbookServices  = GuestbookServices;
 }
Example #7
0
 public GuestBookController(IGuestbookServices guestbookServices)
 {
     this.guestbookServices = guestbookServices;
 }