LabWork06
This commit is contained in:
parent
7d02ac089f
commit
974a8675b4
@ -1,10 +1,4 @@
|
|||||||
using ProjectMotorboat.Drownings;
|
using ProjectMotorboat.Drownings;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat;
|
namespace ProjectMotorboat;
|
||||||
|
|
||||||
public delegate void BoatDelegate(DrawningBoat car);
|
public delegate void BoatDelegate(DrawningBoat car);
|
@ -1,5 +1,4 @@
|
|||||||
using ProjectMotorboat.CollectionGenericObjects;
|
using ProjectMotorboat.Drownings;
|
||||||
using ProjectMotorboat.Drownings;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
|
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
|
|
||||||
public enum CollectionType
|
public enum CollectionType
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using ProjectMotorboat.CollectionGenericObjects;
|
|
||||||
using ProjectMotorboat.Drownings;
|
using ProjectMotorboat.Drownings;
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
|
|
||||||
public interface ICollectionGenericObjects<T>
|
public interface ICollectionGenericObjects<T>
|
||||||
|
@ -1,10 +1,4 @@
|
|||||||
using System;
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
|
||||||
|
|
||||||
public class ListGenericObjects<T> : ICollectionGenericObjects<T>
|
public class ListGenericObjects<T> : ICollectionGenericObjects<T>
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
|
||||||
public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
|
public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
|
||||||
where T : class
|
where T : class
|
||||||
{
|
{
|
||||||
|
@ -1,9 +1,5 @@
|
|||||||
using ProjectMotorboat.Drownings;
|
using ProjectMotorboat.Drownings;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.CollectionGenericObjects;
|
namespace ProjectMotorboat.CollectionGenericObjects;
|
||||||
|
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.Drownings
|
namespace ProjectMotorboat.Drownings
|
||||||
{
|
{
|
||||||
public enum DirectionType
|
public enum DirectionType
|
||||||
|
@ -1,10 +1,4 @@
|
|||||||
using ProjectMotorboat.Entities;
|
using ProjectMotorboat.Entities;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.Drownings;
|
namespace ProjectMotorboat.Drownings;
|
||||||
|
|
||||||
public class DrawningBoat
|
public class DrawningBoat
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
using ProjectMotorboat.Entities;
|
using ProjectMotorboat.Entities;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.Drownings;
|
namespace ProjectMotorboat.Drownings;
|
||||||
public static class ExtentionDrawningBoat
|
public static class ExtentionDrawningBoat
|
||||||
|
@ -1,10 +1,4 @@
|
|||||||
using System;
|
namespace ProjectMotorboat.Entities;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat.Entities;
|
|
||||||
|
|
||||||
public class EntityBoat
|
public class EntityBoat
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
using ProjectMotorboat.CollectionGenericObjects;
|
using ProjectMotorboat.CollectionGenericObjects;
|
||||||
using ProjectMotorboat.Drownings;
|
using ProjectMotorboat.Drownings;
|
||||||
using System.Windows.Forms;
|
|
||||||
|
|
||||||
namespace ProjectMotorboat;
|
namespace ProjectMotorboat;
|
||||||
public partial class FormBoatCollection : Form
|
public partial class FormBoatCollection : Form
|
||||||
|
Loading…
Reference in New Issue
Block a user