LeftWorkAccount Table created - workshop Account edited table

This commit is contained in:
samsys
2024-07-23 21:14:55 +03:30
parent 88fbea0a39
commit d922487032
33 changed files with 13405 additions and 155 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace AccountManagement.Application.Contracts.Account;
public class AccountLeftWorkViewModel
{
public string AccountFullName { get; set; }
public long AccountId { get; set; }
public string StartDateFa { get; set; }
public string LeftDateFa { get; set; }
public List<AccountViewModel> AccountList { get; set; }
public List<WorkshopAccountlistViewModel> WorkshopAccountlist { get; set; }
}

View File

@@ -28,8 +28,10 @@ namespace AccountManagement.Application.Contracts.Account
OperationResult DeActive(long id);
OperationResult DirectLogin(long id);
#region Mahan
List<AccountViewModel> AccountsForAssign(long accountId);
AccountLeftWorkViewModel WorkshopList(long accountId);
#region Mahan
List<AccountViewModel> AccountsForAssign(long accountId);
List<AccountViewModel> GetAccountsByPositionId(long positionId);
List<AccountViewModel> GetAccountLowerPositionvalue();

View File

@@ -0,0 +1,12 @@
namespace AccountManagement.Application.Contracts.Account;
public class WorkshopAccountlistViewModel
{
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public long AccountId { get; set; }
public string ContractAndCheckout { get; set; }
public string Insurance { get; set; }
public string Tax { get; set; }
public string IsActiveSting { get; set; }
}