Ejemplo n.º 1
0
 public GroupMeetingController()
 {
     _villageService      = new VillageService();
     _groupService        = new GroupService();
     _memberService       = new MemberService();
     _groupmeetingService = new GroupMeetingService();
 }
 public FederationMeetingController()
 {
     _memberService            = new MemberService();
     _federationMeetingService = new FederationMeetingService();
     _villageService           = new VillageService();
     _groupService             = new GroupService();
 }
Ejemplo n.º 3
0
 private async Task DeleteItemsAsync(IEnumerable <VillageModel> models)
 {
     foreach (var model in models)
     {
         await VillageService.DeleteVillageAsync(model);
     }
 }
Ejemplo n.º 4
0
 public VillageController()
 {
     _villageService  = new VillageService();
     _mandalService   = new MandalService();
     _stateService    = new StateService();
     _districtservice = new DistrictService();
     _clusterService  = new ClusterService();
 }
Ejemplo n.º 5
0
 public DepositOBController()
 {
     _villageService     = new VillageService();
     _groupService       = new GroupService();
     _clusterService     = new ClusterService();
     _interestService    = new InterestService();
     _accountHeadService = new AccountHeadService();
 }
Ejemplo n.º 6
0
 private async Task <IList <VillageModel> > GetItemsAsync()
 {
     if (!ViewModelArgs.IsEmpty)
     {
         DataRequest <Data.Village> request = BuildDataRequest();
         return(await VillageService.GetVillagesAsync(request));
     }
     return(new List <VillageModel>());
 }
Ejemplo n.º 7
0
 public PanchayatController()
 {
     _PanchayatService = new PanchayatService();
     _stateservice     = new StateService();
     _clusterService   = new ClusterService();
     _mandalService    = new MandalService();
     _villageService   = new VillageService();
     _CommonService    = new CommonService();
     _DistrictService  = new DistrictService();
 }
Ejemplo n.º 8
0
 public OrganizationController()
 {
     _organizationService = new OrganizationService();
     _bankService         = new BankService();
     _villageService      = new VillageService();
     _clusterService      = new ClusterService();
     _interestService     = new InterestService();
     _panchayatService    = new PanchayatService();
     _commonService       = new CommonService();
 }
Ejemplo n.º 9
0
 public GroupController()
 {
     _groupService       = new GroupService();
     _bankService        = new BankService();
     _villageService     = new VillageService();
     _clusterService     = new ClusterService();
     _interestService    = new InterestService();
     _accountHeadService = new AccountHeadService();
     _panchayatService   = new PanchayatService();
     _memberService      = new MemberService();
     _commonService      = new CommonService();
 }
Ejemplo n.º 10
0
 public LoanOBController()
 {
     _villageService               = new VillageService();
     _groupService                 = new GroupService();
     _clusterService               = new ClusterService();
     _projectService               = new ProjectService();
     _fundSourceService            = new FundSourceService();
     _loanpurposeService           = new LoanPurposeService();
     _interestService              = new InterestService();
     _accountHeadService           = new AccountHeadService();
     _groupLoanDisbursementService = new GroupLoanDisbursementService();
 }
Ejemplo n.º 11
0
 public BaseController()
 {
     _groupService       = new GroupService();
     _bankService        = new BankService();
     _villageService     = new VillageService();
     _clusterService     = new ClusterService();
     _interestService    = new InterestService();
     _accountHeadService = new AccountHeadService();
     _panchayatService   = new PanchayatService();
     _memberService      = new MemberService();
     _commonService      = new CommonService();
     //UserInfo.UserID = SESS_USER_ID;
 }
Ejemplo n.º 12
0
 public ReceiptController()
 {
     _groupService          = new GroupService();
     _referenceValueService = new ReferenceValueService();
     _panchayatService      = new PanchayatService();
     _bankService           = new BankService();
     _groupReceiptService   = new GroupReceiptService();
     _ClusterService        = new ClusterService();
     _villageService        = new VillageService();
     _employeeService       = new EmployeeService();
     _accountheadService    = new AccountHeadService();
     _repaymentService      = new RepaymentService();
 }
 public VillagesController(VillageService villageService)
 {
     _villageService = villageService;
 }