示例#1
0
 /// <summary>
 /// Constructor whose purpose is to set private
 /// readonly variable value. It is identical with the
 /// value of the passed parameter.
 /// </summary>
 /// <param name="customerFeedbackRepository">
 /// Existing ICustomerFeedbackRepository object.
 /// </param>
 public CustomerFeedbackLogic(ICustomerFeedbackRepository customerFeedbackRepository)
 {
     _customerFeedbackRepository = customerFeedbackRepository;
 }
 public ApiCustomerFeedbackController(ICustomerFeedbackRepository repository)
 {
     _repsitory = repository;
 }