public async Task <ActionResult> FlatSettlementSheet(Guid FlatId) { var flat = await buildingService.GetFlatDTO(FlatId); var settlementsheetservice = await settlementSheetService.GetAll(flat); return(View(settlementsheetservice)); }
public async Task <ActionResult> Details(Guid PeriodId, Guid FlatId) { var flat = await buildingService.GetFlatDTO(FlatId); var period = await periodService.GetPeriodDTO(PeriodId); return(View(await serviceBillService.GetAll(flat, period))); }
public async Task <ActionResult> SelectSheet(Guid FlatId) { var flat = await buildingService.GetFlatDTO(FlatId); return(View(await settlementSheetService.GetAll(flat))); }