コード例 #1
0
 public DashboardController()
 {
     _vComplaint    = new vComplaintRepository();
     _complaintType = new ComplaintTypeRepository();
     _user          = new ASPNetUserRepository();
     _app           = new Helper();
 }
コード例 #2
0
        public SolutionProvidedController()
        {
            _complaint          = new ComplaintRepository();
            _vComplaint         = new vComplaintRepository();
            _complaintActivity  = new ComplaintActivityRepository();
            _vComplaintActivity = new vComplaintActivityRepository();
            _complaintType      = new ComplaintTypeRepository();
            _slnStatus          = new SolutionStatusRepository();

            _user            = new ASPNetUserRepository();
            _complaintStatus = new ComplaintStatusRepository();
            _help            = new Helper();
        }
コード例 #3
0
        public List <ComplaintType> LoadComplaintType()
        {
            IComplaintType obj = new ComplaintTypeRepository();

            return(obj.LoadComplaintType());
        }
コード例 #4
0
 public ComplaintTypeController()
 {
     _complaintType = new ComplaintTypeRepository();
     _help          = new Helper();
 }