LeftWorkAccount Table created - workshop Account edited table
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -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();
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user