14 lines
474 B
C#
14 lines
474 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace Company.Domain.TemporaryClientRegistrationAgg;
|
|
|
|
public interface IWorkshopServicesTempRepository : IRepository<long, WorkshopServicesTemp>
|
|
{
|
|
/// <summary>
|
|
/// حذف کامل سرویس های کارگاه
|
|
/// </summary>
|
|
/// <param name="workshopTempId"></param>
|
|
public void RemoveServices(long workshopTempId);
|
|
} |