Compare commits
No commits in common. "6b9da32038fc97ddecd5ff7bb169a490adfe4f05" and "acee749f2410a47efac9b13c891cdbed119f6752" have entirely different histories.
6b9da32038
...
acee749f24
@ -77,7 +77,7 @@ namespace ComputerShopBusinessLogic.BusinessLogics
|
||||
public bool Delete(ProductBindingModel Model)
|
||||
{
|
||||
CheckModel(Model, false);
|
||||
_logger.LogInformation("Delete. Id: {Id}", Model.Id);
|
||||
_logger.LogInformation("Delete. Id:{Id}", Model.Id);
|
||||
|
||||
if (_productStorage.Delete(Model) is null)
|
||||
{
|
||||
@ -88,17 +88,6 @@ namespace ComputerShopBusinessLogic.BusinessLogics
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool BindShipment(ProductBindingModel Model)
|
||||
{
|
||||
if (Model.ShipmentId == null)
|
||||
{
|
||||
_logger.LogInformation("Trying to bind null shipment to product with Id: {Id}", Model.Id);
|
||||
return false;
|
||||
}
|
||||
|
||||
return Update(Model);
|
||||
}
|
||||
|
||||
private void CheckModel(ProductBindingModel Model, bool WithParams = true)
|
||||
{
|
||||
if (Model == null)
|
||||
|
@ -15,7 +15,5 @@ namespace ComputerShopContracts.BusinessLogicContracts
|
||||
bool Update(ProductBindingModel Model);
|
||||
|
||||
bool Delete(ProductBindingModel Model);
|
||||
|
||||
bool BindShipment(ProductBindingModel Model);
|
||||
}
|
||||
}
|
||||
|
13
ComputerShopRestApi/WeatherForecast.cs
Normal file
13
ComputerShopRestApi/WeatherForecast.cs
Normal file
@ -0,0 +1,13 @@
|
||||
namespace ComputerShopRestApi
|
||||
{
|
||||
public class WeatherForecast
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
|
||||
public string? Summary { get; set; }
|
||||
}
|
||||
}
|
BIN
ER-diagramm.jpg
BIN
ER-diagramm.jpg
Binary file not shown.
Before Width: | Height: | Size: 172 KiB |
Loading…
Reference in New Issue
Block a user