Idea of the project: if someone wants to order a project development, here you can send an application.
namespace ProjectRequestTest.Core
{
public interface IProjectRequestService
{
int Create(ProjectRequestItem item);
ProjectRequestItem GetRequestByIdentifier(int identifier);
}
}