mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
820b1c9c2e
Prepare integration project
20 lines
359 B
C#
20 lines
359 B
C#
namespace Slim.Tests.Models;
|
|
|
|
public class MultiConstructorService : IIndependentService
|
|
{
|
|
public int X { get; }
|
|
public int Y { get; }
|
|
public object Z { get; }
|
|
|
|
public MultiConstructorService(int x, int y, object z)
|
|
{
|
|
this.X = x;
|
|
this.Y = y;
|
|
this.Z = z;
|
|
}
|
|
|
|
public MultiConstructorService()
|
|
{
|
|
}
|
|
}
|