Angular ve Bootstrap v5.0 Kullanılarak Hazırlanmıştır
- Component : HTML, Typescript ve CSS dosyalarını içerir. Typescript dosyaları genel olarak ilgili componentin servisini kullanılır.
- Services : API ile bağlantının sağlandığı kısımdır. Gerekli metotlar serviste yazıldıktan sonra Component tarafında kullanıma alınarak(Implementation) karmaşa önlenmiş olur.
- Models : API'dan gelen veriler Front-End'de bir interface içerisinde özellik olarak tutulur ve Component tarafında kullanıcıya gösterilir.
- Pipes : Eğer elimizde bir veri varsa ve bu veriyi farklı şekilde kullanmak istiyorsak pipe'lar kullanılabilir (Örneğin: Bir fiyat verisi varsa ve o fiyata KDV eklenecek ise pipe kullanılabilir.)
Made using Angular and Bootstrap v5.0
- Component : Includes HTML,Typesript and CSS files. The Typescript files generally use related component service.
- Services : It is the part the connection with the API is provided.Confusion is avoided by implementation service in Component after write the necessary method.
- Models : Data from the API is kept as a property from an interface on the Front-End and displayed to user in Component
- Pipes : If we have a data and we want using data differently can use the pipe.(For Example: If we have a price data and want add vat this price, we can use pipe)