Commit a74dc97e authored by hasan khaddour's avatar hasan khaddour

add cutomers requests

parent 89ab6587
...@@ -8,6 +8,6 @@ namespace PSManagement.Contracts.Authentication ...@@ -8,6 +8,6 @@ namespace PSManagement.Contracts.Authentication
{ {
public record LoginRequest( public record LoginRequest(
String Email , String Email ,
String PassWorrd String PassWord
); );
} }
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSManagement.Contracts.Customers.Requests
{
public record CreateCustomerRequest(
String CustomerName,
String StreetName,
int StreetNumber,
int ZipCode,
String City
);
public record AddressRecord(
String StreetName ,
int StreetNumber,
int ZipCode ,
String City
);
}
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment