27 lines
548 B
C#
27 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using TIAM.Entities.TransferDestinations;
|
|
using TIAMWebApp.Shared.Application.Models;
|
|
|
|
namespace EmployeePortal.Client.Components
|
|
{
|
|
public partial class Transfer : ComponentBase
|
|
{
|
|
|
|
public string DestinationId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
protected TransferDestination TDestinations
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
}
|
|
}
|