feat: add budget update functionality and enhance budget management UI
- Implemented UpdateAsync method in BudgetController for updating budget details. - Created UpdateBudgetDto for handling budget update requests. - Added BudgetCard component for displaying budget information with progress tracking. - Developed BudgetEditPopup component for creating and editing budget entries. - Introduced BudgetSummary component for summarizing budget statistics by period. - Enhanced budget period display logic in BudgetDto to support various timeframes.
This commit is contained in:
@@ -12,8 +12,8 @@ public interface IBudgetService
|
||||
}
|
||||
|
||||
public class BudgetService(
|
||||
IBudgetRepository budgetRepository,
|
||||
ILogger<BudgetService> logger) : IBudgetService
|
||||
IBudgetRepository budgetRepository
|
||||
) : IBudgetService
|
||||
{
|
||||
public async Task<List<BudgetRecord>> GetAllAsync()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user