Beispiel #1
0
 public CourseController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #2
0
 public ChargeCodeController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #3
0
 public MLSMASMemberServices(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #4
0
 public ComplianceController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #5
0
 public AssistantController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
 public CourseRegistrationController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #7
0
 public MemberSearchController(IMLSMASRepository repo, MLSMASMemberServices services)
 {
     _repo = repo;
     _services = services;
 }
Beispiel #8
0
 public FirmController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #9
0
 public PaymentMasterController(IMLSMASRepository repo, MLSMASAccountingService service)
 {
     _repo = repo;
     _service = service;
 }
Beispiel #10
0
 public ChartOfAccountController(IMLSMASRepository repo)
 {
     _repo = repo;
 }
Beispiel #11
0
 public MLSMASAccountingService(IMLSMASRepository repo)
 {
     _repo = repo;
 }