17 lines
445 B
C#
17 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using _0_Framework.Application;
|
|
|
|
namespace CompanyManagment.App.Contracts.Percentage;
|
|
|
|
public interface IPercentageApplication
|
|
{
|
|
void Create(CreatePercentage command);
|
|
void Edit(EditPercentage command);
|
|
EditPercentage GetDetails(long id);
|
|
|
|
List<PercentageViewModel> Search(PercentageSearchModel searchModel);
|
|
} |