12 lines
369 B
C#
12 lines
369 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Application;
|
|
|
|
namespace AccountManagement.Application.Contracts.TaskSubject;
|
|
|
|
public interface ITaskSubjectApplication
|
|
{
|
|
OperationResult Create(string subject);
|
|
OperationResult Edit(TaskSubjectViewModel command);
|
|
OperationResult Delete(long id);
|
|
List<TaskSubjectViewModel> GetAll(string search);
|
|
} |